home *** CD-ROM | disk | FTP | other *** search
/ Gigarom 1 / Gigarom Macintosh Archives (Quantum Leap)(CDRM1080320)(1993).iso / FILES / QUI / UTI / Feature Flick v 1.5.sea / Read Me!!! next >
Text File  |  1992-10-22  |  1KB  |  39 lines

  1. Dear Fans of "Feature Flick":
  2.  
  3.  
  4.     My neat QuickTime™ Movie Editor had a 2-hour overhaul due to the appearance of Version 1.5 of the QuickTime™ INIT.
  5.  
  6.     For you programmers out there, here are the few fixes that are involved:
  7.  
  8.        a) For Version 1.Ø, if the Moov returned by _NewMovieFromScrap was NULL, that is there wasn't any, "noErr" was still registered by _GetMoviesError; howsomever, what you must now do is:
  9.  
  10.             #define noMoovOnScrap    -102
  11.  
  12.             localScrap = NewMovieFromScrap(newMovieActive);
  13.             err = GetMoviesError();
  14.             if (err == noMoovOnScrap)    {
  15.                 err = noErr;
  16.                 localScrap = NULL;
  17.             }
  18.             FailOSErr(err);
  19.  
  20.        b) For Version 1.Ø, a call to _MCSetControllerBoundsRect effectively called:
  21.  
  22.             err = MCDoAction(theMC, mcActionControllerSizeChanged, &someRect);
  23.  
  24. Not any more folks ... you must explicitly access _MCDoAction.
  25.  
  26.  
  27. All these programming changes + a few odds-and-ends are included in this stuffed file.
  28.  
  29.  
  30.                     With warmest regards ...
  31.  
  32.  
  33.  
  34.                         John A. Love, III
  35.                         6413 Wyngate Drive
  36.                         Springfield,  VA.   22152
  37.  
  38.                         (703) 569-2294  [your nickle]
  39.